home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / OWLINC.PAK / WINDOW.RH < prev    next >
Text File  |  1997-05-06  |  2KB  |  79 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows
  3. // Copyright (c) 1992, 1996 by Borland International, All Rights Reserved
  4. //
  5. //$Revision:   10.4  $
  6. //
  7. // Command IDs to use with window.h
  8. //----------------------------------------------------------------------------
  9. #if !defined(OWL_WINDOW_RH)
  10. #define OWL_WINDOW_RH
  11.  
  12. //
  13. // Win95 Dialog styles, if not defined. Can be used in resources & source
  14. //
  15. #if !defined(DS_3DLOOK)
  16. # define DS_3DLOOK            0x0004L
  17. #endif
  18. #if !defined(DS_FIXEDSYS)
  19. # define DS_FIXEDSYS          0x0008L
  20. #endif
  21. #if !defined(DS_NOFAILCREATE)
  22. # define DS_NOFAILCREATE      0x0010L
  23. #endif
  24. #if !defined(DS_CONTROL)
  25. # define DS_CONTROL           0x0400L
  26. #endif
  27. #if !defined(DS_CENTER)
  28. # define DS_CENTER            0x0800L
  29. #endif
  30. #if !defined(DS_CENTERMOUSE)
  31. # define DS_CENTERMOUSE       0x1000L
  32. #endif
  33. #if !defined(DS_CONTEXTHELP)
  34. # define DS_CONTEXTHELP       0x2000L
  35. #endif
  36.  
  37. //
  38. // Commands
  39. //
  40. #define CM_EXIT             24310
  41.  
  42. #define CM_EDITUNDO         24321       // Common edit menu commands
  43. #define CM_EDITCUT          24322
  44. #define CM_EDITCOPY         24323
  45. #define CM_EDITPASTE        24324
  46. #define CM_EDITDELETE       24325
  47. #define CM_EDITCLEAR        24326
  48. #define CM_EDITADD          24327
  49. #define CM_EDITEDIT         24328
  50. #define CM_EDITREDO         24329
  51.  
  52. //
  53. // Default ObjectWindows app icon ID
  54. //
  55. #define IDI_OWLAPP          32000
  56. #define IDI_OWLAPPSM        32001
  57.  
  58. #if defined(RC_INVOKED)
  59. //
  60. // The following ObjectWindows constants are C++ constants. The macros 
  61. // duplicated below allow the constants to be used when compiling resources.
  62. //
  63.  
  64. //
  65. // Decoration IDs
  66. //
  67. #define IDW_STATUSBAR       32040
  68. #define IDW_TOOLBAR         32041
  69.  
  70. //
  71. // MDI IDs
  72. //
  73. #define IDW_MDICLIENT       32000
  74. #define IDW_FIRSTMDICHILD   32001
  75.  
  76. #endif  // RC_INVOKED
  77. #endif  // OWL_WINDOW_RH
  78.  
  79.